home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 3 / The Pier Shareware Number 3 (The Pier Exchange) (1993).iso / 002 / ncav32.exe / AVIEW.CTL next >
Text File  |  1993-09-04  |  6KB  |  185 lines

  1. ; -----------------------------------------------------------------------------
  2. ; AVIEW V3.2 Sample control-file, DON'T USE TABS!
  3. ; -----------------------------------------------------------------------------
  4. ;
  5. ;
  6. ; BACKUP <Extension>
  7. ; With this statement you define the file-extension of a backup-file which is
  8. ; created by your editor used in the EDIT function, when the edited-file with
  9. ; this extension exists it is deleted after an edit/update, this must be done
  10. ; otherwise AVIEW cannot cleanup the tempory directorys correctly.
  11. BACKUP bak
  12. ;
  13. ;
  14. ;
  15. ; NOCOLOR
  16. ; With this statment you force AVIEW in black and white mode, this can be
  17. ; handy for laptop-users who have a LCD-Screen.
  18. ;NOCOLOR
  19. ;
  20. ;
  21. ;
  22. ; NOMOUSE
  23. ; With this statement you force AVIEW to ignore the mouse when detected.
  24. ;NOMOUSE
  25. ;
  26. ;
  27. ;
  28. ; VIEWER <Trigger> <Viewer> [<Parameters>]
  29. ; With this command you can define up to 16 viewers, with <Trigger> you
  30. ; specify the file-extension which must trigger the viewer, the <Trigger>
  31. ; may include wildcards. Default viewer when non-defined is WPVIEW for all
  32. ; type of files.
  33. VIEWER doc word %f
  34. VIEWER fli quickfli %f
  35. VIEWER gl  grasprt %f
  36. VIEWER gif bitmap %f
  37. VIEWER pcx bitmap %f
  38. VIEWER *   wpview %f
  39. ;
  40. ;
  41. ;
  42. ; EDITOR <Editor> [<Parameters>]
  43. ; With this command you define the editor to use with the edit-function.
  44. ; Default editor when non defined is NCEDIT.
  45. EDITOR ncedit %f
  46. ;
  47. ;
  48. ;
  49. ; EXTRACTPATH <Path>
  50. ; With this command you define the path where files must be extracted to,
  51. ; when this command is NOT used, AVIEW will prompt you for a path.
  52. EXTRACTPATH c:\unpacked
  53. ;
  54. ;
  55. ;
  56. ; SCREENMODE <Lines>
  57. ; With this statement you can define how many lines per screen AVIEW must
  58. ; use, valid number of lines are 25, 35, 40, 43 and 50, note that a number
  59. ; greater than 25 needs a EGA of VGA display-adapter.
  60. SCREENMODE 25
  61. ;
  62. ;
  63. ;
  64. ; SORT <Key> [ascending|descending]
  65. ; With this statement you can define how AVIEW must sort the file-lists as
  66. ; default, valid sort-keys are: NAME, EXTENSION, ORGSIZE, CMPSIZE, DATETIME
  67. ; and METHOD, optional you can specify with ASCENDING or DESCENDING the
  68. ; default sort direction.
  69. SORT name ascending
  70. ;
  71. ;
  72. ;
  73. ; TEMPPATH <Path>
  74. ; With this command you define the path AVIEW must use as work-directory,
  75. ; this can be a ram-drive which will speed-up AVIEW dramatically.
  76. TEMPPATH d:\
  77. ;
  78. ;
  79. ;
  80. ; SCANNER <Scanner> [<Parameters>]
  81. ; With this command you define the virus-scanner to use after files are
  82. ; unpacked with the unpack function, when no scanner is defined, no virus-
  83. ; scan will be performed.
  84. SCANNER scan %f /a /nomem /noexpire /nopause
  85. ;
  86. ;
  87. ;
  88. ; ZOOMSPEED <Milliseconds)
  89. ; With this command you define the zoom-speed of the popup-windows to build
  90. ; up onto the screen, 0 means immediate popup, default is 10
  91. ZOOMSPEED 10
  92. ;
  93. ;
  94. ;
  95. ; -----------------------------------------------------------------------------
  96. ; The following commands concerns the configuration of the parameters passed
  97. ; by AVIEW to the archive-utils.
  98. ; For normal operation of AVIEW, you don't need to change this, all the
  99. ; following commands are optional, the sample commands reflects the standard
  100. ; default configuration of AVIEW.
  101. ; -----------------------------------------------------------------------------
  102. ;
  103. ; xxxADD <Command-line>
  104. ; xxxDELETE <Command-Line>
  105. ; xxxEXTRACT <Command-Line>
  106. ; xxxUNPACK <Command-Line>
  107. ; xxxUPDATE <Command-Line>
  108. ; xxxRESPONSE <Response-char>
  109. ; With these commands you can configure the interface between AVIEW and the
  110. ; external archive-utilitys, the xxx can be ARC, ARJ, LHA, PAK, ZIP or ZOO.
  111. ; xxxADD      - Defines which parameters to use for adding a file to
  112. ;               an archive, this is used for the ADD function (F7).
  113. ; xxxDELETE   - Defines which parameters to use for deleting a file or files
  114. ;               from an archive, this is used for the DELETE function
  115. ;               (F8 or DEL).
  116. ; xxxEXTRACT  - Defines which parameters to use for extracting a file or files
  117. ;               from an archive, this is used for the extract-function.
  118. ; xxxUNPACK   - Defines which parameters to use for extracting ONE file from
  119. ;               an archive WITHOUT path, this is used internally in AVIEW.
  120. ; xxxUPDATE   - Defines which parameters to use for updating a file in an
  121. ;               archive, this is used after you edited a file from an archive.
  122. ; xxxRESPONSE - Defines which charachter to use before a file name to tell
  123. ;               the archiver that it is a response file, AVIEW defines
  124. ;               automatically when to use this or not.
  125. ;
  126. ; NOTE: There are two variables, %A and %F, thes two must ALWAYS exist in one
  127. ;       of the above parameters (except xxxRESPONSE), %A will be replaced by
  128. ;       AVIEW with the name of the archive processed, and %F with a filename
  129. ;       for adding/deleting/updating, note that AVIEW will automatically add
  130. ;       the response-file-char before the filename when needed.
  131. ;       The variables %A and %F are NOT optional!
  132. ;
  133. ;
  134. ; PKPak/PKUnpak - for ARC files.
  135. ARCadd      PKPAK -a %a %f
  136. ARCdelete   PKPAK -d %a %f
  137. ARCextract  PKUNPAK -r %a %f
  138. ARCunpack   PKUNPAK %a %f
  139. ARCupdate   PKPAK -u %a %f
  140. ARCresponse @
  141. ;
  142. ; ARJ - for ARJ files.
  143. ARJadd      ARJ a -jm -m1 -e %a %f
  144. ARJdelete   ARJ d %a %f
  145. ARJextract  ARJ x -y %a %f
  146. ARJunpack   ARJ e %a %f
  147. ARJupdate   ARJ u -jm -m1 %a %f
  148. ARJresponse !
  149. ;
  150. ; LHA - For LZH or LHA files.
  151. LHAadd      LHA a %a %f
  152. LHAdelete   LHA d %a %f
  153. LHAextract  LHA x -c %a %f
  154. LHAunpack   LHA e %a %f
  155. LHAupdate   LHA u %a %f
  156. LHAresponse @
  157. ;
  158. ; PAK - For PAK files.
  159. PAKadd      PAK A %a %f
  160. PAKdelete   PAK D %a %f
  161. PAKextract  PAK E /WA /I %a %f
  162. PAKunpack   PAK E %a %f
  163. PAKupdate   PAK U %a %f
  164. PAKresponse @
  165. ;
  166. ; PKZip/PKUnzip - for ZIP files.
  167. ZIPadd      PKZIP -ex %a %f
  168. ZIPdelete   PKZIP d %a %f
  169. ZIPextract  PKUNZIP -d -o %a %f
  170. ZIPunpack   PKUNZIP %a %f
  171. ZIPupdate   PKZIP -u -ex %a %f
  172. ZIPresponse @
  173. ;
  174. ; ZOO - for ZOO files.
  175. ZOOadd      ZOO -a %a %f
  176. ZOOdelete   ZOO -d %a %f
  177. ZOOextract  ZOO -e -S %a %f
  178. ZOOunpack   ZOO -e %a %f
  179. ZOOupdate   ZOO -u %a %f
  180. ZOOresponse @
  181. ;
  182. ;
  183. ;
  184. ; <EOF>
  185.